home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / disk / misc / string11.lha / makefile < prev    next >
Makefile  |  1993-09-17  |  707b  |  35 lines

  1. #
  2. #  FILE
  3. #    makefile for strings
  4. #
  5.  
  6. LC    = sc:c/sc5
  7. INCDIR  = -isrc:alilib/include -isrc:alilib/special
  8. LCFLAGS = -d2 -. -v -cfist -r -rr -O $(INCDIR) -sc=text -sd=__MERGED -sb=__MERGED
  9.  
  10. OBJS    = strings.o clop.o freeclop.o malloc.o free.o
  11.  
  12. BLINK    = sc:c/slink
  13. LNKFLG    = LIB lib:sc.lib BATCH NOALVS SMALLCODE NODEBUG
  14. MAP    = MAP strings.map hxfls SWIDTH 16 PWIDTH 16
  15.  
  16. LHA    = lha
  17.  
  18. .c.o:
  19.     $(LC) $(LCFLAGS) $*
  20.  
  21.  
  22. strings    :    $(OBJS)
  23.     $(BLINK) TO strings FROM $(OBJS) $(LNKFLG) $(MAP)
  24.  
  25. release    :
  26.     delete home:myreleases/strings11.lzh
  27.     $(LHA) a home:myreleases/strings11.lzh  strings strings.doc \#?.c \#?.h makefile
  28.  
  29. install    :
  30.     copy strings      bin:
  31.     copy strings.doc doc:
  32.  
  33. backup:
  34.     filebackup #?.c #?.h strings.doc makefile
  35.